home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 240 (DVD) / Issue 240 - February 2008 - DPCS0208DVD.ISO / Extras / NetObjects Fusion / NOF10.exe / data1.cab / FSI / ControlPanel / lib / nof / controlpanel / html / ControlPanelApp.js next >
Encoding:
Text File  |  2007-04-11  |  957 b   |  37 lines

  1. /****i* SOURCE_FILE/INFO
  2. *
  3. * NAME
  4. *  ControlPanelApp.js
  5. *
  6. * USAGE
  7. *  Part of Netobjects JavaScript Library.
  8. *
  9. * COPYRIGHT
  10. *  Copyright ⌐ 2002-2004 Website Pros, Inc.
  11. *  All Rights Reserved.
  12. *
  13. *  This is an unpublished work protected by Website Pros, Inc.
  14. *  as a trade secret, and is not to be used or disclosed except as
  15. *  expressly provided in a written license agreement executed by
  16. *  you and Website Pros, Inc.
  17. *
  18. *      <copyright@websitepros.com>
  19. *
  20. * NOTES
  21. *  JavaScript code.
  22. *****/
  23. if (!IS_isModuleInitialized("IS.NOF.CONTROLPANEL.HTML.ControlPanelApp"))    
  24. {    
  25. function NOF_ControlPanelApp(_name) {
  26.     this.__proto__ = NOF_ControlPanelApp.prototype;
  27.     
  28.     if ( arguments.length == 0 )
  29.         this.SUPER();
  30.     else {
  31.         this.SUPER(_name, ".\\ControlPanel\\ControlPanelResources", NOF.UTIL.DefaultLocale);
  32.     }
  33. }
  34.     
  35. NOF_ControlPanelApp.inherits(NOF.HTML.App);
  36. NOF.CONTROLPANEL.HTML.__proto__.ControlPanelApp = NOF_ControlPanelApp;
  37. }